home *** CD-ROM | disk | FTP | other *** search
/ Atari Mega Archive 1 / Atari Mega Archive - Volume 1.iso / mint / mgr / sparcmgr / demo1.zoo / demo / mac / Makefile next >
Encoding:
Makefile  |  1989-01-24  |  956 b   |  49 lines

  1. #                        Copyright (c) 1987 Bellcore
  2. #                            All Rights Reserved
  3. #       Permission is granted to copy or use this program, EXCEPT that it
  4. #       may not be sold for profit, the copyright notice must be reproduced
  5. #       on copies, and credit should be given to Bellcore where it is due.
  6. #       BELLCORE MAKES NO WARRANTY AND ACCEPTS NO LIABILITY FOR THIS PROGRAM.
  7.  
  8. #    $Header: Makefile,v 4.1 88/06/30 16:46:51 bianchi Exp $
  9. #    $Source: /tmp/mgrsrc/demo/mac/RCS/Makefile,v $
  10.  
  11. # mac stuff
  12. #
  13. #    courtesy  S. D. Hawley
  14. #
  15.  
  16. CFILES=
  17. HFILES =
  18. OTHER = Makefile mp2mgr.hqx
  19. START=.
  20. CPIO=mac.cpio
  21. INSROOT=/usr/mgr
  22. INSDIR=$(INSROOT)/bin
  23.  
  24. SMALL= mp2mgr.hqx
  25. ALL = $(SMALL)
  26.  
  27. all:    $(ALL)
  28.     @echo See `pwd` for macintosh support things.
  29.  
  30. small:    $(SMALL)
  31.  
  32. fast:
  33.  
  34. install:    all
  35.  
  36. smallinstall:
  37.  
  38. clean:    
  39.  
  40. clobber:
  41.  
  42. list:
  43.     @for i in ${CFILES} ${HFILES} ${OTHER}; do \
  44.         echo "${START}/$$i"; \
  45.     done    
  46.  
  47. cpio:
  48.     make -s list | cpio -ocv > ${CPIO}
  49.